home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / maincfgret.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  62 lines

  1. #
  2. # This script was written by Michel Arboi <mikhail@nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(15564);
  10.  script_bugtraq_id ( 11043 );
  11.  script_cve_id("CAN-2004-0798");
  12.  script_version ("$Revision: 1.4 $");
  13.  
  14.  name["english"] = "Whatsup Gold vulnerable CGI";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "The '_maincfgret' cgi is installed. 
  18. Some versions were vulnerable to a buffer overflow.
  19.  
  20. ** This might be a false positive, no attack was performed
  21. ** and the version was not checked
  22.  
  23. http://www.idefense.com/application/poi/display?id=142&type=vulnerabilities
  24. http://www.packetstormsecurity.org/0408-advisories/08.25.04.txt
  25.  
  26. Solution : upgrade to Whatsup Gold 8.03 HF 1 if needed
  27.  
  28. Risk factor : High";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for the presence of /_maincfgret.cgi";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("http_version.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52. port = get_http_port(default:80);
  53.  
  54. if (is_cgi_installed_ka(item: "/_maincfgret.cgi", port:port))
  55. {
  56.   security_warning(port);
  57.   exit(0);
  58. }
  59.  
  60. if (is_cgi_installed_ka(item:"_maincfgret.cgi", port:port)) 
  61.  security_warning(port);
  62.